home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntinc20 / process.h < prev    next >
C/C++ Source or Header  |  1992-05-15  |  687b  |  31 lines

  1. /* defines for spawnve, etc. */
  2.  
  3. #ifndef _PROCESS_H
  4. #define _PROCESS_H
  5.  
  6. #ifndef _COMPILER_H
  7. #include <compiler.h>
  8. #endif
  9.  
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13.  
  14. #define P_WAIT        0
  15. #define P_NOWAIT    1
  16. #define P_OVERLAY    2
  17.  
  18. __EXTERN int    spawnv    __PROTO((int, char *, char **));
  19. __EXTERN int    spawnve    __PROTO((int, char *, char **, char **));
  20. __EXTERN int    _spawnve __PROTO((int, char *, char **, char **));
  21. __EXTERN int    spawnvp    __PROTO((int, char *, char **));
  22. __EXTERN int    spawnle    __PROTO((int, char *, ...));
  23. __EXTERN int    spawnl    __PROTO((int, char *, ...));
  24. __EXTERN int    spawnlp    __PROTO((int, char *, ...));
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30. #endif /* _PROCESS_H */
  31.